/* head */

.h-top {
    background: #07674b;
    color: #fefefe;
    height: 38px;
    line-height: 38px;
    
}
.top-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

 .h-logo {
    padding: 25px 0;
   
}

 .h-logo  img {
   width: 100%;
}

/* nav */
.nav-container{
    width: 100%;
    border-top: 2px solid #07674b;
}

.nav>li {
    width: 12.2%;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
}
.dropdown-menu{
    margin: 0;
    width: 100%;
    
}
.dropdown-menu>li>a {
    line-height: 30px !important;
    padding-left: 32px;
}
/* footer */
.footer{
    height: 250px;
    margin-top: 70px;
    padding-top:40px ;
    background: #07674b;
    color: #fff;
    /* text-align: center; */
}
.footer-content{
	display: flex;
    justify-content:space-around;
    padding: 10px;
}
.footer-left li{
	line-height: 30px;
}
.footer-right{
    display: flex;
    justify-content: center;
   /* padding: 20px 0; */
   
}
.footer-right img{
    width: 150px;
    height: 150px;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .top-content{
        padding: 10px 0;
    }
    .top-content-right{
        display: none;
    }
    .nav li{
        /* display: inline; */
        width: 32%;
    }
    .content {
        width: 96%;
    }
    .footer  {
       padding-top: 25px;
       margin-top: 30px;
    }
    .footer-content{
        justify-content:space-between;
    }
    .footer-left li{
        max-width: 260px;
        padding-left: 10px;
    }
    .footer-right{
        display: flex;
       flex-direction: column;
    }
    .footer-right img{
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
}

